home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / utility / 95 / pascal / gemdos.doc < prev    next >
Encoding:
Text File  |  1987-01-15  |  1019 b   |  42 lines

  1.  
  2.  
  3.                  GEMDOS binding for Personal Pascal
  4.  
  5.                         By Jinfu Chen
  6.  
  7.         This package includes two files, GEMDOS.PAS and GEMDOS.TYP. In order to
  8. use it in your program, you can use the compiler directive I to include them in
  9. your program. For example:
  10.  
  11. PROGRAM myprogram ;
  12.  
  13. CONST
  14.   your_constant goes here ;
  15.  
  16. TYPE
  17.   {$I GEMDOS.TYP}
  18.   your_type goes here ;
  19.  
  20. VAR
  21.   your_variable goes here ;
  22.  
  23. {$I GEMODS.PAS}
  24.  
  25. your_procedure goes here ;
  26. your_function goes here ;
  27.  
  28. BEGIN
  29.   your_program goes here ;
  30. END.
  31.  
  32.  
  33.         I tested most of the procedures and found out some of them don't work.
  34. Procedures to send characters to printer port and send raw character to screen
  35. are among them. Also get edited string from console doesn't seem to work. I
  36. couldn't figure out why since all the procedures pass compilation. If you can
  37. find out why please send me an E-mail to the address in the header of the file.
  38.  
  39.                                         Jan. 5, 1986
  40.  
  41.  
  42.